home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / cxref200.zip / STRICMP.C < prev    next >
Text File  |  1993-01-04  |  233b  |  12 lines

  1. int stricmp (a, b)
  2. char *a, *b;
  3. {
  4.     int Result;
  5.  
  6.     while (((Result = toupper(*a++) - toupper(*b++)) == 0) && (*(a-1) != 0));
  7.     if (Result < 0) Result = -1;
  8.     if (Result > 0) Result = 1;
  9.     return(Result);
  10.     }
  11.  
  12.